home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 18
/
AMIGAplus Sonderheft 18 (1999)(ICP)(DE)[!].iso
/
PD
/
Spiele
/
lazymines
/
lazymines_src
/
highscores.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-01-03
|
420b
|
30 lines
/* highscores.h
* ============
* Interface to highscore handling.
*
* Copyright (C) 1994-1998 Håkan L. Younes (lorens@hem.passagen.se)
*/
#ifndef HIGHSCORES_H
#define HIGHSCORES_H
#include <exec/types.h>
void
load_high_scores (
char *default_name);
void
save_high_scores (void);
UBYTE
update_high_score (
UWORD score);
void
display_high_scores (
UBYTE highlight_no);
#endif /* HIGHSCORES_H */